зеркало из https://github.com/mozilla/hubs.git
67 строки
1.7 KiB
JavaScript
67 строки
1.7 KiB
JavaScript
// https://eslint.org/
|
|
module.exports = {
|
|
parser: "@babel/eslint-parser",
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true
|
|
},
|
|
globals: {
|
|
THREE: true,
|
|
AFRAME: true,
|
|
NAF: true,
|
|
APP: true
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: "detect"
|
|
}
|
|
},
|
|
plugins: ["prettier", "react", "react-hooks", "@calm/react-intl"],
|
|
// https://eslint.org/docs/rules/
|
|
rules: {
|
|
"prettier/prettier": "error",
|
|
|
|
// https://github.com/prettier/eslint-plugin-prettier
|
|
"prefer-const": "error",
|
|
"no-use-before-define": "error",
|
|
"no-var": "error",
|
|
"no-throw-literal": "error",
|
|
"no-unused-vars": [
|
|
"error",
|
|
{
|
|
destructuredArrayIgnorePattern: "^_"
|
|
}
|
|
],
|
|
// Light console usage is useful but remove debug logs before merging to master.
|
|
"no-console": "off",
|
|
// https://www.npmjs.com/package/eslint-plugin-react-hooks
|
|
"react-hooks/rules-of-hooks": "error",
|
|
"react-hooks/exhaustive-deps": "error",
|
|
// https://github.com/calm/eslint-plugin-react-intl
|
|
"@calm/react-intl/missing-formatted-message": [
|
|
"error",
|
|
{
|
|
noTrailingWhitespace: true,
|
|
ignoreLinks: true,
|
|
enforceLabels: true,
|
|
enforceImageAlts: true,
|
|
enforceInputProps: false
|
|
}
|
|
],
|
|
"@calm/react-intl/missing-attribute": [
|
|
"error",
|
|
{
|
|
noTrailingWhitespace: true,
|
|
noSpreadOperator: true,
|
|
requireDescription: false,
|
|
formatDefineMessages: true,
|
|
requireIdAsString: true,
|
|
requireDefaultMessage: true
|
|
}
|
|
],
|
|
"@calm/react-intl/missing-values": "error"
|
|
},
|
|
extends: ["prettier", "plugin:react/recommended", "eslint:recommended", "plugin:storybook/recommended"]
|
|
};
|