forked from Semantic-Org/Semantic-UI-React
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(package): update all dependencies (Semantic-Org#1895)
* chore(package): update all dependencies * style(mixed): fix lint issues * chore(package): update deps, add es6 support to configs * style(docs): revert Table and Menu changes, splitted to Semantic-Org#1938 * style(docs): revert tests changes, splitted to Semantic-Org#1939 * style(mixed): restore formatting * style(mixed): revert tests changes, splitted to Semantic-Org#1949 * style(configs): ESify configs * chore(package): update deps * style(mixed): fix lint issues * style(eslint): cleanup configs * fix(configs): fix import of webpack config * chore(package): update package-lock.json
- Loading branch information
1 parent
7b94bf2
commit ff5888f
Showing
103 changed files
with
2,338 additions
and
1,934 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,38 @@ | ||
{ | ||
"plugins": [ | ||
"jsx-a11y" | ||
], | ||
"extends": [ | ||
"plugin:jsx-a11y/recommended", | ||
"ta", | ||
"ta/frontend" | ||
], | ||
"parser": "babel-eslint", | ||
"extends": "airbnb", | ||
"env": { | ||
"browser": true | ||
}, | ||
"rules": { | ||
"complexity": [1, 10], | ||
"class-methods-use-this": 0, | ||
"consistent-return": 0, | ||
"no-confusing-arrow": 0, | ||
"jsx-a11y/accessible-emoji": 1, | ||
"jsx-a11y/anchor-has-content": 1, | ||
"jsx-a11y/aria-activedescendant-has-tabindex": 1, | ||
"jsx-a11y/aria-props": 1, | ||
"jsx-a11y/aria-proptypes": 1, | ||
"jsx-a11y/aria-role": 1, | ||
"jsx-a11y/aria-unsupported-elements": 1, | ||
"jsx-a11y/click-events-have-key-events": 1, | ||
"jsx-a11y/heading-has-content": 1, | ||
"jsx-a11y/href-no-hash": 1, | ||
"jsx-a11y/html-has-lang": 1, | ||
"jsx-a11y/iframe-has-title": 1, | ||
"jsx-a11y/img-has-alt": 1, | ||
"jsx-a11y/img-redundant-alt": 1, | ||
"jsx-a11y/label-has-for": 1, | ||
"jsx-a11y/lang": 1, | ||
"jsx-a11y/mouse-events-have-key-events": 1, | ||
"jsx-a11y/no-access-key": 1, | ||
"jsx-a11y/no-autofocus": 1, | ||
"jsx-a11y/no-distracting-elements": 1, | ||
"jsx-a11y/no-onchange": 1, | ||
"jsx-a11y/no-redundant-roles": 1, | ||
"jsx-a11y/no-static-element-interactions": 1, | ||
"jsx-a11y/onclick-has-focus": 1, | ||
"jsx-a11y/onclick-has-role": 1, | ||
"jsx-a11y/role-has-required-aria-props": 1, | ||
"jsx-a11y/role-supports-aria-props": 1, | ||
"jsx-a11y/scope": 1, | ||
"jsx-a11y/tabindex-no-positive": 1, | ||
"react/jsx-curly-spacing": 0, | ||
"react/sort-comp": 0, | ||
"semi": [2, "never"], | ||
"complexity": [1, 10], | ||
"global-require": 0, | ||
"jsx-quotes": [2, "prefer-single"], | ||
"max-len": [2, 120, 4], | ||
"no-console": 2, | ||
"no-multi-spaces": [2, { "ignoreEOLComments": true }], | ||
"no-return-assign": [2, "except-parens"], | ||
"no-underscore-dangle": 0, | ||
"padded-blocks": [2, { | ||
"blocks": "never", | ||
"switches": "never", | ||
"classes": "never" | ||
}], | ||
"valid-jsdoc": 0 | ||
"semi": [2, "never"], | ||
"jsx-a11y/alt-text": 1, | ||
"jsx-a11y/label-has-for": 1, | ||
"jsx-a11y/role-has-required-aria-props": 1, | ||
"import/no-dynamic-require": 0, | ||
"import/no-extraneous-dependencies": 0, | ||
"import/no-unresolved": 0, | ||
"import/no-webpack-loader-syntax": 0, | ||
"import/extensions": 0, | ||
"react/forbid-prop-types": 0, | ||
"react/jsx-filename-extension": [2, { "extensions": [".js"] }], | ||
"react/no-unused-prop-types": 0, | ||
"react/sort-comp": 0, | ||
"react/require-default-props": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,17 @@ | ||
{ | ||
"globals": { | ||
"__DEV__": false, | ||
"__STAGING__": false, | ||
"__TEST__": false, | ||
"__PATH_SEP__": false, | ||
"__PROD__": false | ||
}, | ||
"rules": { | ||
"jsx-a11y/accessible-emoji": 0, | ||
"jsx-a11y/anchor-has-content": 0, | ||
"jsx-a11y/aria-activedescendant-has-tabindex": 0, | ||
"jsx-a11y/aria-props": 0, | ||
"jsx-a11y/aria-proptypes": 0, | ||
"jsx-a11y/aria-role": 0, | ||
"jsx-a11y/aria-unsupported-elements": 0, | ||
"jsx-a11y/click-events-have-key-events": 0, | ||
"jsx-a11y/heading-has-content": 0, | ||
"jsx-a11y/alt-text": 0, | ||
"jsx-a11y/href-no-hash": 0, | ||
"jsx-a11y/html-has-lang": 0, | ||
"jsx-a11y/iframe-has-title": 0, | ||
"jsx-a11y/img-has-alt": 0, | ||
"jsx-a11y/img-redundant-alt": 0, | ||
"jsx-a11y/label-has-for": 0, | ||
"jsx-a11y/lang": 0, | ||
"jsx-a11y/mouse-events-have-key-events": 0, | ||
"jsx-a11y/no-access-key": 0, | ||
"jsx-a11y/no-autofocus": 0, | ||
"jsx-a11y/no-distracting-elements": 0, | ||
"jsx-a11y/no-onchange": 0, | ||
"jsx-a11y/no-redundant-roles": 0, | ||
"jsx-a11y/no-static-element-interactions": 0, | ||
"jsx-a11y/onclick-has-focus": 0, | ||
"jsx-a11y/onclick-has-role": 0, | ||
"jsx-a11y/role-has-required-aria-props": 0, | ||
"jsx-a11y/role-supports-aria-props": 0, | ||
"jsx-a11y/scope": 0, | ||
"jsx-a11y/tabindex-no-positive": 0 | ||
"react/no-array-index-key": 0, | ||
"react/no-render-return-value": 0, | ||
"react/no-unescaped-entities": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.