saagie-ui
Version:
Saagie UI from Saagie Design System
30 lines (29 loc) • 869 B
Plain Text
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"class-methods-use-this": [0],
"comma-dangle": [2, "always-multiline"],
"func-names": [0],
"function-paren-newline": [0],
"import/prefer-default-export": [0],
"indent": [1, 2],
"lines-between-class-members": ["error", "always", { "exceptAfterSingleLine": true }],
"max-len": [1],
"no-multiple-empty-lines": [1],
"no-trailing-spaces": [1],
"no-underscore-dangle": [0],
"no-unused-vars": [1],
"react/forbid-prop-types": [0],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/jsx-props-no-spreading": [0],
"react/state-in-constructor": [0],
"jsx-a11y/label-has-for": [0],
"jsx-a11y/label-has-associated-control": [0],
"linebreak-style": [0]
},
"env": {
"browser": true,
"jest": true
}
}