@applitools/eyes-storybook
Version:
45 lines (44 loc) • 856 B
JSON
{
"root": true,
"env": {
"commonjs": true,
"es6": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2022
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"semi": true,
"parser": "babel",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": true
}
],
"no-console": "off",
"no-process-exit": "off",
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": [
"warn",
{
"varsIgnorePattern": "^_",
"args": "all",
"argsIgnorePattern": "^_"
}
],
"constructor-super": "warn",
"valid-typeof": "warn"
}
}