frontend: move to repo root

This commit is contained in:
Patrik Oldsberg
2020-03-05 15:55:28 +01:00
parent 5b9845f62f
commit 56226ae84d
184 changed files with 111 additions and 2097 deletions
+26
View File
@@ -0,0 +1,26 @@
module.exports = {
extends: [
'@spotify/eslint-config-base',
'@spotify/eslint-config-react',
'@spotify/eslint-config-typescript',
'prettier',
'prettier/react',
'prettier/@typescript-eslint',
'plugin:jest/recommended',
],
parser: '@typescript-eslint/parser',
env: {
jest: true,
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
settings: {
react: {
version: 'detect',
},
},
// Adding this to .eslintignore just doesn't even, let me know if you can make it work ._.
ignorePatterns: ['**/*_pb.js', '**/*_pb.d.ts'],
};