1.0.3 • Published 3 months ago

eslint-config-phd v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
3 months ago

⚙️ @phd/Eslint config

Tasks

Tasks to finalize the package

  • Vue rules
  • React rules
  • Node rules

Usagem

First step

$ npm install eslint-config-phd

in eslintrc.js

module.exports {
	//... other configs
	extendes: ['eslint-config-phd/vue']
	
	// change vue to you framework
	// ... more configs
}

Rules

vue

printWidth:  80,
singleQuote:  true,
semi:  false,
trailingComma:  'es5',
vueIndentScriptAndStyle:  true,
tabWidth:  2,