-
-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(eslint): update to ESLint 9 (#1770)
* refactor(eslint): update to ESLint 9 * Update package-lock.json+1 * use npm-run-all2 * fix lock file
- Loading branch information
Showing
10 changed files
with
6,022 additions
and
5,418 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
export default [{ | ||
ignores: [ | ||
"**/node_modules/", | ||
"**/build.js", | ||
"**/build/", | ||
"**/html-like-comments-example.js", | ||
"**/*-invalid.js", | ||
"**/invalid/**/*.js", | ||
], | ||
}, { | ||
languageOptions: { | ||
ecmaVersion: 2024, | ||
sourceType: "module", | ||
}, | ||
|
||
rules: { | ||
// サンプルコードで概念的な関数を使うことがあるため | ||
"no-undef": "off", | ||
// サンプルコードで変数を宣言していないことがあるため | ||
"no-unused-vars": "off", | ||
// サンプルコードで console を使うことがあるため | ||
"no-console": "off", | ||
// 名前の分かりやすさのために制限する | ||
// 詳細: https://github.com/asciidwango/js-primer/issues/804 | ||
"id-blacklist": ["error", "string", "number", "object", "boolean", "symbol"], | ||
|
||
indent: ["error", 4, { | ||
SwitchCase: 1, | ||
}], | ||
|
||
quotes: ["error", "double", { | ||
allowTemplateLiterals: true, | ||
}], | ||
|
||
"array-bracket-spacing": ["error", "never"], | ||
"brace-style": ["error", "1tbs"], | ||
"block-spacing": "error", | ||
"comma-spacing": "error", | ||
"computed-property-spacing": "error", | ||
"no-whitespace-before-property": "error", | ||
"object-curly-newline": ["off", "always"], | ||
"object-curly-spacing": ["error", "always"], | ||
"key-spacing": "error", | ||
"keyword-spacing": "error", | ||
"linebreak-style": ["error", "unix"], | ||
"no-multiple-empty-lines": "error", | ||
"rest-spread-spacing": "error", | ||
semi: ["error", "always"], | ||
"semi-spacing": "error", | ||
"space-before-blocks": "error", | ||
"space-before-function-paren": ["error", "never"], | ||
"space-in-parens": "error", | ||
"space-infix-ops": "error", | ||
"space-unary-ops": "error", | ||
|
||
"spaced-comment": ["error", "always", { | ||
exceptions: ["-", "=", "!"], | ||
|
||
markers: [ | ||
"eslint", | ||
"eslint-env", | ||
"eslint-disable", | ||
"eslint-enable", | ||
"eslint-disable-line", | ||
"eslint-disable-next-line", | ||
"exported", | ||
"globals", | ||
"istanbul", | ||
"!", | ||
], | ||
}], | ||
|
||
"prefer-const": "error", | ||
"no-var": "error", | ||
}, | ||
}]; |
Oops, something went wrong.