Skip to content

Commit

Permalink
Merge pull request #184 from RocketCommunicationsInc/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
dmcalester committed Oct 21, 2021
2 parents 3921122 + 82a5cb0 commit 5af8dbf
Show file tree
Hide file tree
Showing 204 changed files with 33,816 additions and 16,123 deletions.
84 changes: 42 additions & 42 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"extends": ["google"],
"rules": {
"require-jsdoc": 0,
"object-curly-spacing": 0,
"no-unused-vars": [
"error",
{
"vars": "local"
}
],
"no-console": 1,
"max-len": [
1,
120,
2,
{
"ignoreUrls": true,
"ignoreStrings": true,
"ignorePattern": "data:image/|\\s*require\\s*\\(|^\\s*loader\\.lazy|-\\*-"
}
]
},
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true
"extends": ["google"],
"rules": {
"require-jsdoc": 0,
"object-curly-spacing": 0,
"no-unused-vars": [
"error",
{
"vars": "local"
}
],
"no-console": 1,
"max-len": [
1,
120,
2,
{
"ignoreUrls": true,
"ignoreStrings": true,
"ignorePattern": "data:image/|\\s*require\\s*\\(|^\\s*loader\\.lazy|-\\*-"
}
]
},
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"env": {
"browser": true,
"node": true
},
"globals": {
"customEvent": true,
"customElements": true,
"HTMLImports": true,
"Polymer": true,
"ShadyDOM": true,
"ShadyCSS": true,
"JSCompiler_renameProperty": true
}
},
"env": {
"browser": true,
"node": true
},
"globals": {
"customEvent": true,
"customElements": true,
"HTMLImports": true,
"Polymer": true,
"ShadyDOM": true,
"ShadyCSS": true,
"JSCompiler_renameProperty": true
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,6 @@ Thumbs.db
!.eslintrc.js
!.eslintrc
!.storybook
!.husky
!.prettierrc
!.prettierignore
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run pretty-quick
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
storybook-static
node_modules
static
*.md
*.css
package.json
package-lock.json
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
2 changes: 1 addition & 1 deletion .storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const path = require('path');
const path = require('path')

module.exports = {
// stories: ['../stories/**/*.stories.js'], // load stories via preview.js per: https://github.com/storybookjs/storybook/issues/9793
Expand Down
Loading

0 comments on commit 5af8dbf

Please sign in to comment.