Commit 8ba136bf authored by Jonathan Cunanan's avatar Jonathan Cunanan

Fix eslint not ignoring tests

parent 38c2a999
...@@ -6,12 +6,9 @@ build ...@@ -6,12 +6,9 @@ build
dist dist
# test files # test files
__tests__ /__tests__/**
*.test.js *.test.js
*.spec.js *.spec.js
# config files # config files
*.config.js *.config.js
# exclude src
!src/**
\ No newline at end of file
...@@ -15,7 +15,7 @@ module.exports = { ...@@ -15,7 +15,7 @@ module.exports = {
rules: { rules: {
'linebreak-style': ['error', 'unix'], 'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'], quotes: ['error', 'single'],
semi: ['warning', 'always'], semi: ['warn', 'always'],
'import/no-commonjs': 'error' 'import/no-commonjs': 'error'
} }
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment