Skip to content

Commit 0471adc

Browse files
build(config): remove linting tasks
1 parent 8cd0d0d commit 0471adc

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

config/grunt/aliases.js

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const isType = (...types) => env.TYPE === undefined || types.includes(env.TYPE);
77

88
module.exports = {
99
build: ['sh:build'],
10-
lint: ['sh:lint-config', 'sh:lint-src', 'sh:lint-test'],
1110
test: [
1211
'build',
1312
...filter(

config/grunt/sh.js

-9
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,6 @@ module.exports = (grunt) => {
55
'build': {
66
cmd: 'npm run build'
77
},
8-
'lint-config': {
9-
cmd: 'npm run lint:config'
10-
},
11-
'lint-src': {
12-
cmd: 'npm run lint:src'
13-
},
14-
'lint-test': {
15-
cmd: 'npm run lint:test'
16-
},
178
'test-integration-browser': {
189
cmd: `karma start config/karma/config-integration.js ${continuous ? '--concurrency Infinity' : '--single-run'}`
1910
},

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"lint:test": "eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/",
9696
"prepare": "husky",
9797
"prepublishOnly": "npm run build",
98-
"test": "grunt lint && grunt test"
98+
"test": "npm run lint && grunt test"
9999
},
100100
"types": "build/es2019/module.d.ts",
101101
"version": "8.2.23"

0 commit comments

Comments
 (0)