@integec/grid-tools
Version:
Integ Grid Tools
36 lines (35 loc) • 713 B
Plain Text
{
"parser": "babel-eslint",
"plugins": ["prettier", "jest"],
"extends": [
"eslint:recommended",
"standard",
"standard-react",
"prettier",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
"rules": {
"react/prop-types": "off",
"no-async-promise-executor": "off",
"no-console": "off",
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/jsx-indent": "off",
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "React|jsx|css",
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
},
"env": {
"browser": true,
"node": true
},
"globals": {
"BigInt": "readonly"
}
}