Skip to content

Commit

Permalink
fixup! chore: Ignore Test262 in ESLint and Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
justingrant committed Mar 4, 2024
1 parent 727a1bc commit f0b175a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 22 deletions.
16 changes: 3 additions & 13 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ globals:
globalThis: readonly
ignorePatterns:
- node_modules/
- /dist/
- /tsc-out/
- /test262/
- dist/
- tsc-out/
- test262/
rules:
array-element-newline:
- error
Expand Down Expand Up @@ -117,13 +117,3 @@ overrides:
'@typescript-eslint/consistent-type-exports': error
'@typescript-eslint/consistent-type-imports': error
prefer-const: off
- files:
- polyfill/test262/**
rules:
quotes:
- error
- double
- avoidEscape: true
prettier/prettier:
- error
- singleQuote: false
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
test262/
node_modules/
dist/
tsc-out/
test262/
10 changes: 1 addition & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,15 +124,7 @@
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always",
"overrides": [
{
"files": "polyfill/test262/**",
"options": {
"singleQuote": false
}
}
]
"arrowParens": "always"
},
"directories": {
"lib": "lib",
Expand Down

0 comments on commit f0b175a

Please sign in to comment.