Skip to content

Commit

Permalink
Merge branch 'asset-refactor' of github.com:bcardarella/phoenix into …
Browse files Browse the repository at this point in the history
…bcardarella-asset-refactor
  • Loading branch information
chrismccord committed Jun 21, 2021
2 parents 37ccc1f + b5fdc50 commit b6b62aa
Show file tree
Hide file tree
Showing 33 changed files with 17,014 additions and 8,665 deletions.
82 changes: 82 additions & 0 deletions assets/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
module.exports = {
"env": {
"browser": true,
"es2021": true,
},
"extends": [
"eslint:recommended",
"plugin:mocha/recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"mocha"
],
"rules": {
"indent": [
"error",
2,
{"SwitchCase": 1}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"never"
],
"object-curly-spacing": [
"error",
"never",
{"objectsInObjects": false, "arraysInObjects": false}
],
"array-bracket-spacing": [
"error",
"never"
],
"comma-spacing": [
"error",
{"before": false, "after": true}
],
"computed-property-spacing": [
"error",
"never"
],
"space-before-blocks": [
"error",
{"functions": "never", "keywords": "never", "classes": "always"}
],
"keyword-spacing": [
"error",
{
"overrides": {
"if": {"after": false},
"for": {"after": false},
"while": {"after": false},
"switch": {"after": false}
}

}
],
"eol-last": ["error", "always"],
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"no-useless-escape": "off",
"no-cond-assign": "off",
"no-case-declarations": "off",
"mocha/no-skipped-tests": "off",
"mocha/max-top-level-suites": "off"
}
}
File renamed without changes.
Loading

0 comments on commit b6b62aa

Please sign in to comment.