An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Updated eslint and some configs

+5 -3
+4 -2
.eslintrc.js
··· 1 1 module.exports = { 2 2 extends: 'erb/typescript', 3 3 rules: { 4 - // A temporary hack related to IDE not resolving correct package.json 4 + '@typescript-eslint/ban-ts-comment': 'warn', 5 + '@typescript-eslint/no-use-before-define': 'off', 6 + '@typescript-eslint/naming-convention': 'off', 5 7 'consistent-return': 'warn', 6 8 'dot-notation': 'off', 7 9 'import/no-extraneous-dependencies': 'off', ··· 21 23 'react/jsx-props-no-spreading': 'off', 22 24 'react/jsx-wrap-multilines': 'off', 23 25 'react/no-access-state-in-setstate': 'warn', 26 + 'react/no-array-index-key': 'off', 24 27 'react/no-did-update-set-state': 'warn', 25 28 'react/no-will-update-set-state': 'warn', 26 29 'react/prop-types': 'off', 27 30 'react/static-property-placement': 'off', 28 - 'react/no-array-index-key': 'off', 29 31 }, 30 32 parserOptions: { 31 33 ecmaVersion: 2020,
+1 -1
package.json
··· 12 12 "dev": "cross-env START_HOT=1 node -r @babel/register ./internals/scripts/CheckPortInUse.js && cross-env START_HOT=1 yarn start-renderer-dev", 13 13 "electron-rebuild": "electron-rebuild --parallel --force --types prod,dev,optional --module-dir app", 14 14 "lint": "cross-env NODE_ENV=development eslint . --cache --ext .js,.jsx,.ts,.tsx", 15 - "lint-fix": "yarn --silent lint --fix; exit 0", 15 + "lint-fix": "yarn --silent lint --fix", 16 16 "lint-styles": "stylelint --ignore-path .eslintignore '**/*.*(css|scss)' --syntax scss", 17 17 "lint-styles-fix": "yarn --silent lint-styles --fix; exit 0", 18 18 "package": "yarn build && electron-builder build --publish never",