Skip to content

Commit

Permalink
Merge pull request #20 from biigle/es6
Browse files Browse the repository at this point in the history
ES6
  • Loading branch information
mzur authored Jul 3, 2020
2 parents 7a2bbd8 + d985153 commit f7bfdd5
Show file tree
Hide file tree
Showing 18 changed files with 10,863 additions and 217 deletions.
27 changes: 27 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"no-prototype-builtins": "off",
"no-console": ["error", {"allow": ["warn", "error"]}],
"vue/require-v-for-key": "off"
},
"globals": {
"biigle": "readonly",
"Vue": "readonly",
"VueStrap": "readonly"
}
}
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint

on:
push:
branches:
- master
pull_request:

jobs:
lint:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1

- name: Install dependencies
run: npm install

- name: Run ESLint
run: npm run lint
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Tests

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:

Expand Down
25 changes: 0 additions & 25 deletions gulpfile.js

This file was deleted.

Loading

0 comments on commit f7bfdd5

Please sign in to comment.