Skip to content

Commit

Permalink
Update turbo and lintignore
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Oct 29, 2023
1 parent 9d65bdd commit d93661e
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"build:control": "rollup -c rollup.config.mjs",
"build:flags": "RETAIN_FLAGS=true ember build --env production --suppress-sizes",
"lint": "npm-run-all lint:*",
"lint:files": "dotenv -- turbo lint",
"lint:files": "dotenv -- turbo test:lint",
"force:lint:files": "eslint .",
"lint:types": "tsc -b",
"start": "ember serve --port=7357",
Expand Down
10 changes: 9 additions & 1 deletion packages/@glimmer-workspace/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,15 @@ module.exports = {
},
},
{
files: ['integration-tests/test/updating-test.ts'],
files: [
'integration-tests/test/updating-test.ts',
'integration-tests/lib/dom/simple-utils.ts',
'integration-tests/lib/modes/jit/delegate.ts',
'integration-tests/lib/modes/jit/register.ts',
'integration-tests/lib/render-delegate.ts',
'integration-tests/test/style-warnings-test.ts',
'integration-tests/test/updating-content-matrix-test.ts',
],
rules: {
'@typescript-eslint/no-redundant-type-constituents': 'off',
},
Expand Down
15 changes: 15 additions & 0 deletions packages/@glimmer/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@ module.exports = {
'compiler/lib/builder/builder-interface.ts',
'syntax/test/support.ts',
'destroyable/test/destroyables-test.ts',
'syntax/test/plugin-node-test.ts',
'syntax/test/loc-node-test.ts',
'syntax/test/parser-node-test.ts',
'dom-change-list/test/support.ts',
'reference/test/iterable-test.ts',
'reference/test/references-test.ts',
'test/traversal/visiting-keys-node-test.ts',
'syntax/test/traversal/visiting-node-test.ts',
'syntax/test/traversal/visiting-keys-node-test.ts',
],
rules: {
'@typescript-eslint/no-redundant-type-constituents': 'off',
Expand Down Expand Up @@ -92,5 +101,11 @@ module.exports = {
'@typescript-eslint/no-inferrable-types': 'off',
},
},
{
files: ['validator/lib/utils.ts'],
rules: {
'n/no-unsupported-features/es-builtins': 'off',
},
},
],
};
1 change: 1 addition & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"outputs": ["dist/**"]
},
"lint": {
"cache": false,
"dependsOn": ["test:lint"]
},
"test:lint": {},
Expand Down

0 comments on commit d93661e

Please sign in to comment.