Skip to content

Commit

Permalink
feat: tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
hunger-programmer committed Feb 27, 2024
1 parent db2f2c1 commit f800329
Show file tree
Hide file tree
Showing 25 changed files with 503 additions and 325 deletions.
65 changes: 33 additions & 32 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,42 +1,43 @@
module.exports = {
"extends": "eslint:recommended",
"plugins": [
"import"
extends: ['eslint:recommended', 'eslint-config-airbnb-base', 'prettier'],
plugins: [
'import',
],
"env": {
"browser": true,
"es6": true,
"node": true
env: {
browser: true,
es6: true,
node: true,
},
"parserOptions": {
"ecmaVersion": 2017
parserOptions: {
'ecmaVersion': 2020,
},
"rules": {
"no-undefined": "off",
"no-var": "off",
"indent": [
"warn",
4
rules: {
'no-undefined': 'off',
'no-var': 'off',
indent: [
'warn',
4,
],
"no-console": "off",
"no-unused-vars": [
"error",
'no-console': 'off',
'no-unused-vars': [
'error',
{
"argsIgnorePattern": "next"
}
argsIgnorePattern: 'next',
},
],
"valid-jsdoc": [
"error",
'valid-jsdoc': [
'error',
{
"requireParamDescription": false,
"requireReturnDescription": false
}
requireParamDescription: false,
requireReturnDescription: false,
},
],
"max-nested-callbacks": [
"error",
5
'max-nested-callbacks': [
'error',
5,
],
"camelcase": "off",
"padded-blocks": "off"
}
}
camelcase: 'off',
'padded-blocks': 'off',
'import/no-extraneous-dependencies': ['error', {'devDependencies': true}]
},
};
4 changes: 2 additions & 2 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
extends: ['@commitlint/config-conventional']
}
extends: ['@commitlint/config-conventional'],
};
195 changes: 186 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,24 @@
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.8",
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"autoprefixer": "^10.4.17",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"nodemon": "^3.0.3",
"postcss": "^8.4.33",
"postcss-loader": "^8.1.0",
"prettier": "3.2.5",
"regenerator-runtime": "^0.14.1",
"sass": "^1.70.0",
"sass-loader": "^14.1.0",
Expand Down
9 changes: 9 additions & 0 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/** @type {import("prettier").Config} */
const config = {
trailingComma: "es5",
tabWidth: 4,
semi: false,
singleQuote: true,
};

module.exports = config;
Loading

0 comments on commit f800329

Please sign in to comment.