Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
WisestCoder committed Mar 26, 2022
0 parents commit 52ffc37
Show file tree
Hide file tree
Showing 74 changed files with 17,932 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# http://editorconfig.org
root = true

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

[*.md]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab
23 changes: 23 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"extends": ["./node_modules/@ols-scripts/eslint-config", "plugin:prettier/recommended"],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"globals": {
"document": true,
"localStorage": true
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"prettier/prettier": 1,
"@typescript-eslint/prefer-for-of": 1,
"react/jsx-curly-newline": 0,
"no-shadow": "off",
"no-underscore-dangle": 0
}
}
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/npm-debug.log*
/yarn-error.log
/package-lock.json

# production
/dist
/docs-dist

# misc
.DS_Store
.idea

# umi
.umi
.umi-production
.umi-test
.env.local

/coverage

.ols/themes
3 changes: 3 additions & 0 deletions .ols.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
type: "component"
}
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/*.svg
**/*.ejs
**/*.html
package.json
.umi
.umi-production
.umi-test
14 changes: 14 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"quoteProps": "consistent",
"singleQuote": true,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"semi": false,
"bracketSpacing": true,
"endOfLine": "lf",
"arrowParens": "always",
"tabWidth": 2,
"useTabs": false,
"printWidth": 106,
"trailingComma": "all"
}
8 changes: 8 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": ["@@ols-scripts/eslint-config/style.js"],
"ignoreFiles": ["node_modules/**", "**/*.json"],
"rules": {
"no-descending-specificity": null,
"no-duplicate-selectors": null
}
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
Loading

0 comments on commit 52ffc37

Please sign in to comment.