2017-05-06 12:26:54 -07:00
|
|
|
---
|
2017-06-23 07:05:04 -07:00
|
|
|
root: true
|
|
|
|
|
2017-05-06 12:26:54 -07:00
|
|
|
env:
|
|
|
|
browser: true
|
2017-06-23 07:05:04 -07:00
|
|
|
node: true
|
2017-05-06 12:26:54 -07:00
|
|
|
es6: true
|
2017-10-16 00:33:08 -07:00
|
|
|
jest: true
|
2017-05-06 12:26:54 -07:00
|
|
|
|
2018-05-28 15:43:47 -07:00
|
|
|
globals:
|
|
|
|
ATTACHMENT_HOST: false
|
|
|
|
|
2017-05-06 12:26:54 -07:00
|
|
|
parser: babel-eslint
|
|
|
|
|
|
|
|
plugins:
|
|
|
|
- react
|
|
|
|
- jsx-a11y
|
2017-10-16 02:12:09 -07:00
|
|
|
- import
|
2018-04-02 05:51:02 -07:00
|
|
|
- promise
|
2017-05-06 12:26:54 -07:00
|
|
|
|
|
|
|
parserOptions:
|
|
|
|
sourceType: module
|
|
|
|
ecmaFeatures:
|
2018-01-17 07:57:15 -08:00
|
|
|
experimentalObjectRestSpread: true
|
2017-05-06 12:26:54 -07:00
|
|
|
jsx: true
|
2018-01-17 07:57:15 -08:00
|
|
|
ecmaVersion: 2018
|
2017-05-06 12:26:54 -07:00
|
|
|
|
2017-10-16 02:12:09 -07:00
|
|
|
settings:
|
|
|
|
import/extensions:
|
|
|
|
- .js
|
|
|
|
import/ignore:
|
|
|
|
- node_modules
|
|
|
|
- \\.(css|scss|json)$
|
2017-05-06 12:26:54 -07:00
|
|
|
|
2017-10-16 02:12:09 -07:00
|
|
|
rules:
|
2017-05-06 12:26:54 -07:00
|
|
|
brace-style: warn
|
2017-06-05 18:56:36 -07:00
|
|
|
comma-dangle:
|
|
|
|
- error
|
|
|
|
- always-multiline
|
2017-05-06 12:26:54 -07:00
|
|
|
comma-spacing:
|
|
|
|
- warn
|
|
|
|
- before: false
|
|
|
|
after: true
|
|
|
|
comma-style:
|
|
|
|
- warn
|
|
|
|
- last
|
2017-06-05 18:56:36 -07:00
|
|
|
consistent-return: error
|
|
|
|
dot-notation: error
|
|
|
|
eqeqeq: error
|
|
|
|
indent:
|
|
|
|
- warn
|
|
|
|
- 2
|
|
|
|
jsx-quotes:
|
|
|
|
- error
|
|
|
|
- prefer-single
|
|
|
|
no-catch-shadow: error
|
|
|
|
no-cond-assign: error
|
2017-06-11 01:42:42 -07:00
|
|
|
no-console:
|
|
|
|
- warn
|
|
|
|
- allow:
|
|
|
|
- error
|
2017-08-24 03:15:36 -07:00
|
|
|
- warn
|
2017-06-05 18:56:36 -07:00
|
|
|
no-fallthrough: error
|
|
|
|
no-irregular-whitespace: error
|
2017-05-06 12:26:54 -07:00
|
|
|
no-mixed-spaces-and-tabs: warn
|
|
|
|
no-nested-ternary: warn
|
|
|
|
no-trailing-spaces: warn
|
2017-06-23 07:05:04 -07:00
|
|
|
no-undef: error
|
2017-06-05 18:56:36 -07:00
|
|
|
no-unreachable: error
|
|
|
|
no-unused-expressions: error
|
2017-06-23 07:05:04 -07:00
|
|
|
no-unused-vars:
|
|
|
|
- error
|
|
|
|
- vars: all
|
|
|
|
args: after-used
|
|
|
|
ignoreRestSiblings: true
|
2017-06-05 18:56:36 -07:00
|
|
|
object-curly-spacing:
|
|
|
|
- error
|
|
|
|
- always
|
2017-05-20 08:31:47 -07:00
|
|
|
padded-blocks:
|
|
|
|
- error
|
|
|
|
- classes: always
|
2017-06-05 18:56:36 -07:00
|
|
|
quotes:
|
2017-05-20 08:31:47 -07:00
|
|
|
- error
|
2017-06-05 18:56:36 -07:00
|
|
|
- single
|
|
|
|
semi: error
|
|
|
|
strict: off
|
|
|
|
valid-typeof: error
|
2017-05-06 12:26:54 -07:00
|
|
|
|
2017-06-06 04:20:07 -07:00
|
|
|
react/jsx-boolean-value: error
|
|
|
|
react/jsx-closing-bracket-location:
|
|
|
|
- error
|
|
|
|
- line-aligned
|
|
|
|
react/jsx-curly-spacing: error
|
|
|
|
react/jsx-equals-spacing: error
|
|
|
|
react/jsx-first-prop-new-line:
|
|
|
|
- error
|
|
|
|
- multiline-multiprop
|
|
|
|
react/jsx-indent:
|
|
|
|
- error
|
|
|
|
- 2
|
2017-05-19 11:58:12 -07:00
|
|
|
react/jsx-no-bind: error
|
2017-06-06 04:20:07 -07:00
|
|
|
react/jsx-no-duplicate-props: error
|
2017-06-23 07:05:04 -07:00
|
|
|
react/jsx-no-undef: error
|
2017-06-06 04:20:07 -07:00
|
|
|
react/jsx-tag-spacing: error
|
2017-06-23 07:05:04 -07:00
|
|
|
react/jsx-uses-react: error
|
|
|
|
react/jsx-uses-vars: error
|
2017-06-05 18:56:36 -07:00
|
|
|
react/jsx-wrap-multilines: error
|
2017-05-06 12:26:54 -07:00
|
|
|
react/no-multi-comp: off
|
2017-06-06 04:20:07 -07:00
|
|
|
react/no-string-refs: error
|
2017-06-05 18:56:36 -07:00
|
|
|
react/prop-types: error
|
|
|
|
react/self-closing-comp: error
|
2017-05-06 12:26:54 -07:00
|
|
|
|
|
|
|
jsx-a11y/accessible-emoji: warn
|
2018-01-17 07:57:15 -08:00
|
|
|
jsx-a11y/alt-text: warn
|
2017-05-06 12:26:54 -07:00
|
|
|
jsx-a11y/anchor-has-content: warn
|
2018-06-01 05:03:19 -07:00
|
|
|
jsx-a11y/anchor-is-valid:
|
|
|
|
- warn
|
|
|
|
- components:
|
|
|
|
- Link
|
|
|
|
- NavLink
|
|
|
|
specialLink:
|
|
|
|
- to
|
|
|
|
aspect:
|
|
|
|
- noHref
|
|
|
|
- invalidHref
|
|
|
|
- preferButton
|
2017-05-06 12:26:54 -07:00
|
|
|
jsx-a11y/aria-activedescendant-has-tabindex: warn
|
|
|
|
jsx-a11y/aria-props: warn
|
|
|
|
jsx-a11y/aria-proptypes: warn
|
|
|
|
jsx-a11y/aria-role: warn
|
|
|
|
jsx-a11y/aria-unsupported-elements: warn
|
|
|
|
jsx-a11y/heading-has-content: warn
|
|
|
|
jsx-a11y/html-has-lang: warn
|
|
|
|
jsx-a11y/iframe-has-title: warn
|
|
|
|
jsx-a11y/img-redundant-alt: warn
|
2018-01-17 07:57:15 -08:00
|
|
|
jsx-a11y/interactive-supports-focus: warn
|
2017-07-27 15:54:48 -07:00
|
|
|
jsx-a11y/label-has-for: off
|
2017-05-06 12:26:54 -07:00
|
|
|
jsx-a11y/mouse-events-have-key-events: warn
|
|
|
|
jsx-a11y/no-access-key: warn
|
|
|
|
jsx-a11y/no-distracting-elements: warn
|
2018-01-17 07:57:15 -08:00
|
|
|
jsx-a11y/no-noninteractive-element-interactions:
|
|
|
|
- warn
|
|
|
|
- handlers:
|
|
|
|
- onClick
|
2017-05-06 12:26:54 -07:00
|
|
|
jsx-a11y/no-onchange: warn
|
|
|
|
jsx-a11y/no-redundant-roles: warn
|
2018-01-17 07:57:15 -08:00
|
|
|
jsx-a11y/no-static-element-interactions:
|
|
|
|
- warn
|
|
|
|
- handlers:
|
|
|
|
- onClick
|
2017-05-06 12:26:54 -07:00
|
|
|
jsx-a11y/role-has-required-aria-props: warn
|
2017-07-27 19:37:30 -07:00
|
|
|
jsx-a11y/role-supports-aria-props: off
|
2017-05-06 12:26:54 -07:00
|
|
|
jsx-a11y/scope: warn
|
|
|
|
jsx-a11y/tabindex-no-positive: warn
|
2017-10-16 02:12:09 -07:00
|
|
|
|
|
|
|
import/extensions:
|
|
|
|
- error
|
|
|
|
- always
|
|
|
|
- js: never
|
|
|
|
import/newline-after-import: error
|
|
|
|
import/no-extraneous-dependencies:
|
|
|
|
- error
|
|
|
|
- devDependencies:
|
|
|
|
- "config/webpack/**"
|
|
|
|
- "app/javascript/mastodon/test_setup.js"
|
|
|
|
- "app/javascript/**/__tests__/**"
|
|
|
|
import/no-unresolved: error
|
|
|
|
import/no-webpack-loader-syntax: error
|
2018-04-02 05:51:02 -07:00
|
|
|
|
|
|
|
promise/catch-or-return: error
|