Skip to content

Commit 1afc968

Browse files
build(config): remove linting tasks
1 parent b6d249f commit 1afc968

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

config/grunt/aliases.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ const isType = (...types) => env.TYPE === undefined || types.includes(env.TYPE);
66

77
module.exports = {
88
build: ['sh:build'],
9-
lint: ['sh:lint-config', 'sh:lint-src', 'sh:lint-test'],
109
test: [...filter(isType('integration'), 'sh:test-integration'), ...filter(isType('unit'), 'sh:test-unit')]
1110
};

config/grunt/sh.js

Lines changed: 0 additions & 9 deletions
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': {
189
cmd: `karma start config/karma/config-integration.js ${continuous ? '--concurrency Infinity' : '--single-run'}`
1910
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"lint:test": "eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/",
8181
"prepare": "husky",
8282
"prepublishOnly": "npm run build",
83-
"test": "grunt lint && grunt test"
83+
"test": "npm run lint && grunt test"
8484
},
8585
"types": "build/es2019/module.d.ts",
8686
"version": "7.1.59"

0 commit comments

Comments
 (0)