Skip to content

Commit

Permalink
ci: Upgrade semantic-release (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Sep 25, 2024
1 parent e476aab commit 440ace7
Show file tree
Hide file tree
Showing 4 changed files with 18,525 additions and 10,843 deletions.
26 changes: 23 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@
{
"extends": "airbnb-base",
"root": true,
"extends": "eslint:recommended",
"env": {
"node": true,
"jasmine": true
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"requireConfigFile": false
},
"rules": {
"indent": ["error", 2, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"no-trailing-spaces": 2,
"eol-last": 2,
"space-in-parens": ["error", "never"],
"no-multiple-empty-lines": 1,
"prefer-const": "error",
"space-infix-ops": "error",
"no-useless-escape": "off",
"require-atomic-updates": "off",
"object-curly-spacing": ["error", "always"]
},
"globals": {
"Parse": true
}
}
Loading

0 comments on commit 440ace7

Please sign in to comment.