-
-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* migrate to @babel/eslint-parser * bump prettier and eslint-prettier * bump rimraf to 5 * pin minipass to 6.0.2 minipass 7 uses node builtin import specifier `node:`, which does not support Node.js 14.15 * bump yarn to 3.6.1 * pin minipass to 6.0.2
- Loading branch information
Showing
12 changed files
with
2,661 additions
and
2,151 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,11 +1,41 @@ | ||
{ | ||
"env": { | ||
"es6": true, | ||
"node": true | ||
"parser": "@babel/eslint-parser", | ||
"extends": ["eslint:recommended", "eslint-config-prettier"], | ||
"parserOptions": { | ||
"ecmaVersion": 2017, | ||
"sourceType": "module" | ||
}, | ||
"extends": ["eslint-config-babel", "eslint-config-prettier"], | ||
"plugins": ["prettier"], | ||
"rules": { | ||
"camelcase": "off", | ||
"consistent-return": "off", | ||
"curly": ["error", "multi-line"], | ||
"linebreak-style": ["error", "unix"], | ||
"max-len": ["error", 110, 2], | ||
"new-cap": "off", | ||
"no-case-declarations": "error", | ||
"no-cond-assign": "off", | ||
"no-confusing-arrow": "error", | ||
"no-console": "off", | ||
"no-constant-condition": "off", | ||
"no-empty": "off", | ||
"no-fallthrough": "off", | ||
"no-inner-declarations": "off", | ||
"no-labels": "off", | ||
"no-loop-func": "off", | ||
"no-process-exit": "off", | ||
"no-return-assign": "off", | ||
"no-shadow": "off", | ||
"no-underscore-dangle": "off", | ||
"no-unreachable": "off", | ||
"no-use-before-define": "off", | ||
"no-var": "error", | ||
"prefer-const": "error", | ||
"strict": "off", | ||
"prettier/prettier": "error" | ||
} | ||
}, | ||
"env": { | ||
"node": true, | ||
"es6": true | ||
}, | ||
"plugins": ["prettier"] | ||
} |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1 +1 @@ | ||
yarnPath: .yarn/releases/yarn-3.2.3.cjs | ||
yarnPath: .yarn/releases/yarn-3.6.1.cjs |
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 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 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 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 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 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 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
Oops, something went wrong.