UNPKG

@scientist-softserv/webstore-component-library

Version:

A React component library intended for use with WebStore applications

48 lines (47 loc) 1.18 kB
{ "env": { "browser": true, "es2021": true }, "extends": [ "airbnb", "eslint:recommended", "plugin:react/recommended" ], "overrides": [], "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" }, "plugins": [ "react" ], "rules": { "indent": ["error", 2], "jsx-a11y/click-events-have-key-events": [1], "jsx-quotes": ["error", "prefer-single"], "max-len": ["error", { "code": 140 }], "object-curly-newline": ["error", { "ImportDeclaration": { "multiline": true, "minProperties": 4 }, "ExportDeclaration": { "multiline": true, "minProperties": 4 } }], "react/jsx-indent": ["error", 2], "react/jsx-indent-props": ["error", 2], "react/jsx-one-expression-per-line": "off", "react/no-unescaped-entities": "off", "react/jsx-props-no-spreading": "off", "react/prop-types": "warn", "react/function-component-definition": [ "error", { "namedComponents": "arrow-function", "unnamedComponents": "arrow-function" } ], "semi": ["error", "never"], "camelcase": ["warn", { "ignoreDestructuring": true } ] } }