Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mayconfsousa committed Nov 1, 2024
0 parents commit e71f700
Show file tree
Hide file tree
Showing 10 changed files with 2,937 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/

.DS_Store
3 changes: 3 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import base from './src/base.mjs'

export default base
51 changes: 51 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"name": "eslint-config-nebula",
"version": "0.0.1",
"type": "module",
"exports": {
"./node": {
"types": "./src/node.d.ts",
"default": "./src/node.mjs"
},
"./react": {
"types": "./src/react.d.ts",
"default": "./src/react.mjs"
}
},
"repository": {
"type": "git",
"url": "git://github.com/mayconfsousa/eslint-config-nebula.git"
},
"keywords": [
"eslint",
"eslintconfig"
],
"scripts": {
"lint": "eslint --fix"
},
"dependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.11.0",
"typescript-eslint": "^8.12.2"
},
"peerDependencies": {
"eslint": ">=9",
"typescript": ">=5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}
Loading

0 comments on commit e71f700

Please sign in to comment.