UNPKG

better-npm-init

Version:

A better version of npm init, with templates and more. Usage: better-npm-init <template> [--yarn] [--install] [--git] [--yes] [--help]

35 lines 698 B
{ "parser": "babel-eslint", "env": { "browser": true, "commonjs": true, "es6": true, "node": true }, "extends": [ "eslint:recommended", "plugin:react/recommended" ], "parserOptions": { "ecmaVersion": 6, "ecmaFeatures": { "jsx": true }, "sourceType": "module" }, "plugins": [ "react" ], "rules": { "no-console": "off", "indent": [ "error", 4 ], "quotes": [ "error", "single" ], "semi": [ "error", "always" ] } }