Skip to content

Commit

Permalink
Added tests for Parser
Browse files Browse the repository at this point in the history
  • Loading branch information
marziply committed Aug 5, 2021
1 parent c706263 commit b7e154e
Show file tree
Hide file tree
Showing 9 changed files with 3,798 additions and 3,430 deletions.
23 changes: 0 additions & 23 deletions .eslintrc.js

This file was deleted.

34 changes: 34 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"env": {
"commonjs": true,
"node": true,
"jest": true,
"es2021": true
},
"extends": "eslint:recommended",
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"strictMode": true
},
"rules": {
"new-cap": "off",
"no-console": "off",
"linebreak-style": [
"error",
"unix"
],
"indent": [
"error",
2
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
coverage/
.cache/
.parcel-cache/
.env
Expand Down
Loading

0 comments on commit b7e154e

Please sign in to comment.