Skip to content
This repository has been archived by the owner on Mar 4, 2023. It is now read-only.

Commit

Permalink
Migrated plugin src code from my blog repo
Browse files Browse the repository at this point in the history
# Optionally, a longer description of the change(s) giving more context
# if necessary.
  • Loading branch information
CMeeg committed Aug 7, 2019
1 parent cc1aae0 commit a287dce
Show file tree
Hide file tree
Showing 13 changed files with 3,016 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{js,json,vue}]
indent_style = space
indent_size = 2
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,
"commonjs": true,
"es6": true,
"node": true
},
"extends": [
"standard"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"plugins": [
],
"rules": {
"brace-style": "off",
"operator-linebreak": ["error", "before"],
"semi": "off",
"space-before-function-paren": "off",
"space-unary-ops": "off"
}
}
Loading

0 comments on commit a287dce

Please sign in to comment.