Summary
Add dedicated lint and format npm scripts that expose the corresponding Gulp tasks already available in the repository.
Background
The project currently runs linting as part of the main build pipeline. The build script invokes gulp build, and the Gulp build task includes linting before compilation.
Although this ensures that linting is performed during a full build, package.json does not currently provide an obvious way to run linting or formatting independently. Contributors need to know the internal Gulp task names and invoke them directly:
Summary
Add dedicated
lintandformatnpm scripts that expose the corresponding Gulp tasks already available in the repository.Background
The project currently runs linting as part of the main build pipeline. The
buildscript invokesgulp build, and the Gulp build task includes linting before compilation.Although this ensures that linting is performed during a full build,
package.jsondoes not currently provide an obvious way to run linting or formatting independently. Contributors need to know the internal Gulp task names and invoke them directly: