Skip to content

Commit

Permalink
Refactor plugins page
Browse files Browse the repository at this point in the history
- converting plugins search to ES module
- using npm packages through `snowpack`
- adding `snowpack` production build precommit hook using `husky`
- linting micro_files using ESLint/semistandard
- preventing lockfile generation
- adding editorconfig
  • Loading branch information
vladimyr committed Feb 16, 2020
1 parent 3aec380 commit e7952a9
Show file tree
Hide file tree
Showing 25 changed files with 354 additions and 675 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# editorconfig.org
root = true

[*]
charset = utf-8
indent_size = 2
indent_style = space
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[*.html]
indent_size = 4

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web_modules
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
'use strict';

module.exports = {
extends: 'semistandard',
env: { browser: true }
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
Loading

0 comments on commit e7952a9

Please sign in to comment.