* fix: update deps and devDeps * refactor(prettier): remove unwritten file names from formatter * styles: remove stylelint & scss * refactor: replace scss styles to tailwind * feat: implement tailwind config * refactor: update eslint config * refactor(locales): replace autho's github url with repo itself * refactor: change author's name license * refactor(code): update code settings * refactor: improve file components generators * fix(code): add sharable config * fix(linter): resolve bad parserConfig and linting itself * refactor: bad imports * refactor: update workflow with its scripts
		
			
				
	
	
		
			21 lines
		
	
	
		
			521 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			521 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
|   "plugins": ["prettier", "simple-import-sort"],
 | |
|   "extends": ["standard-with-typescript", "prettier"],
 | |
|   "env": {
 | |
|     "node": true,
 | |
|     "browser": true,
 | |
|     "jest": true
 | |
|   },
 | |
|   "parserOptions": {
 | |
|     "ecmaVersion": "latest",
 | |
|     "project": ["./tsconfig.json"]
 | |
|   },
 | |
|   "ignorePatterns": ["out", "**/*.config.js", "**/*.d.ts", "plopfile.js"],
 | |
|   "rules": {
 | |
|     "prettier/prettier": "error",
 | |
|     "simple-import-sort/imports": "error",
 | |
|     "simple-import-sort/exports": "error",
 | |
|     "@next/next/no-img-element": "off"
 | |
|   }
 | |
| }
 |