Skip to content

Commit

Permalink
Merge pull request #426 from spencermountain/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
spencermountain authored Apr 4, 2021
2 parents 805d725 + 2e7bf2b commit 7f08539
Show file tree
Hide file tree
Showing 502 changed files with 106,572 additions and 46,337 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
**/node_modules/
node_modules/

**/builds/
49 changes: 15 additions & 34 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
{
"root": true,
"env": {
"es6": true,
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017,
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": { }
"ecmaFeatures": {}
},
"plugins": [ "jsdoc" ],
"extends": [
"plugin:compat/recommended",
"plugin:jsdoc/recommended"
],
"extends": ["plugin:compat/recommended", "plugin:regexp/recommended"],
"rules": {
"semi": [ "warn", "never" ],
"indent": [ "error", 2 ],
"spaced-comment": [ "error", "never" ],
"semi": ["warn", "never"],
"indent": ["error", 2],
"spaced-comment": [0, "never"],
"no-cond-assign": 2,
"no-var": 1,
"prefer-const": 0,
Expand All @@ -30,12 +27,7 @@
"no-native-reassign": 2,
"no-redeclare": 2,
"radix": 1,
"quotes": [

0,
"single",
"avoid-escape"
],
"quotes": [0, "single", "avoid-escape"],
"no-shadow": 2,
"no-unused-vars": 1,
"no-lonely-if": 1,
Expand All @@ -47,37 +39,26 @@
"no-octal-escape": 2,
"no-constant-condition": 1,
"no-unused-expressions": 2,
"comma-dangle": [
1,
"only-multiline"
],
"comma-dangle": [1, "only-multiline"],
"space-before-function-paren": [
"error", {
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"max-len": [
"error", {
"error",
{
"code": 120,
"ignoreComments": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true
}
],
"require-jsdoc": [
1,
{
"require": {
"ArrowFunctionExpression": false,
"ClassDeclaration": true,
"FunctionDeclaration": true,
"FunctionExpression": true,
"MethodDefinition": true
}
}
]
"regexp/prefer-d": 0,
"regexp/prefer-w": 0
}
}
7 changes: 4 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 13.x]
node-version: [10.x, 15.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -27,11 +27,12 @@ jobs:
${{ runner.os }}-npm-${{ matrix.node-version }}-
${{ runner.os }}-npm-
- name: npm install, build, and test
- name: npm install, build, lint, and test
run: |
npm ci
npm run build
npm run testb
npm run lint
npm run test:build
npm run test:fetch
env:
CI: true
14 changes: 0 additions & 14 deletions .github/workflows/lint.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
node_modules
.git
viz
coverage
coverage.lcov
codecov.yml
npm-debug.log
.nyc_output
*.DS_Store
*.tsv
_missing_templates.json
Loading

0 comments on commit 7f08539

Please sign in to comment.