Skip to content

Commit 81032aa

Browse files
committed
refactor: mono-repo scruture
1 parent e4ce0c2 commit 81032aa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+5581
-6337
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33
parserOptions: {
44
parser: 'babel-eslint',
55
ecmaVersion: 2017,
6-
sourceType: 'module'
6+
sourceType: 'module',
77
},
88
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
99
extends: [
@@ -18,7 +18,7 @@ module.exports = {
1818
browser: true,
1919
},
2020
// add your custom rules here
21-
'rules': {
21+
rules: {
2222
// allow paren-less arrow functions
2323
'arrow-parens': 0,
2424
// allow async-await
@@ -27,5 +27,10 @@ module.exports = {
2727
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
2828
// trailing comma
2929
'comma-dangle': ['error', 'always-multiline'],
30-
}
30+
},
31+
ignorePatterns: [
32+
'node_modules/',
33+
'dist/',
34+
'!.*',
35+
],
3136
}

0 commit comments

Comments
 (0)