Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
minimal-ui-kit committed Jun 27, 2021
1 parent 10e1ed5 commit 0bc12e4
Show file tree
Hide file tree
Showing 205 changed files with 47,155 additions and 1 deletion.
74 changes: 74 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"root": true,
"env": {
"browser": true,
"node": true
},
"extends": [
"airbnb",
"prettier",
"plugin:jsx-a11y/recommended",
"plugin:react-hooks/recommended"
],
"plugins": [
"prettier",
"react",
"react-hooks"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 8,
"requireConfigFile": false,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"impliedStrict": true
}
},
"rules": {
"import": 0,
"max-len": 0,
"no-alert": 0,
"no-shadow": 0,
"no-console": 0,
"comma-dangle": 0,
"import/no-cycle": 0,
"react/prop-types": 1,
"no-return-assign": 0,
"consistent-return": 1,
"no-param-reassign": 0,
"react/display-name": 0,
"no-use-before-define": 0,
"no-underscore-dangle": 0,
"react/button-has-type": 1,
"react/no-children-prop": 0,
"react/forbid-prop-types": 0,
"jsx-a11y/anchor-is-valid": 0,
"react/react-in-jsx-scope": 0,
"react/no-array-index-key": 0,
"react/no-unused-prop-types": 1,
"react/require-default-props": 0,
"react/no-unescaped-entities": 0,
"import/prefer-default-export": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-filename-extension": 0,
"react/destructuring-assignment": 0,
"import/no-extraneous-dependencies": 0,
"react/jsx-key": 1,
"react-hooks/rules-of-hooks": 2,
"no-unused-vars": [
1,
{
"ignoreRestSiblings": false
}
],
"prettier/prettier": [
2,
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
}
]
}
}
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
/.env
/.env.local
/.env.development.local
/.env.test.local
/.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
### v1.0.0

###### Jun 28, 2021

Initial release.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 minimal-ui-kit
Copyright (c) 2021 Minimal UI

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
13 changes: 13 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"baseUrl": "."
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}
Loading

0 comments on commit 0bc12e4

Please sign in to comment.