Skip to content

Commit

Permalink
⚙️ Add npm & prettier configs
Browse files Browse the repository at this point in the history
  • Loading branch information
stormwarning committed Jun 16, 2019
1 parent 9089964 commit d3d8b76
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 58 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
message = "🔖 Release %s"
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package-lock.json
package.json
116 changes: 58 additions & 58 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
{
"private": true,
"name": "gibsonipsum",
"description": "A cyberpunk placeholder text generator.",
"author": "Jeff <[email protected]>",
"version": "1.2.0",
"scripts": {
"build": "nuxt build",
"deploy": "np --no-release-draft && release",
"dev": "nuxt",
"generate": "nuxt generate",
"lint": "prettier-eslint '**/*.{js,vue}' --list-different --ignore '{dist,.nuxt}/**'",
"lint:styles": "stylelint '**/*.{css,vue}' --ip '{.nuxt,dist}/**'",
"now-build": "npm run generate",
"start": "nuxt start"
},
"dependencies": {
"@nuxtjs/google-analytics": "2.2.x",
"@nuxtjs/markdownit": "1.2.x",
"@nuxtjs/pwa": "2.6.x",
"chroma-js": "2.0.x",
"nuxt": "2.8.x"
},
"devDependencies": {
"@zazen/eslint-config": "1.0.x",
"@zazen/stylelint-config": "1.0.x",
"eslint": "5.16.x",
"eslint-plugin-vue": "5.2.x",
"husky": "2.4.x",
"lint-staged": "8.2.x",
"postcss-advanced-variables": "3.0.x",
"stylelint": "10.1.x"
},
"engines": {
"node": ">8.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"prettier-eslint --write",
"git add"
],
"*.{css,vue}": [
"stylelint --fix",
"git add"
]
},
"prettier": {
"arrowParens": "always",
"htmlWhitespaceSensitivity": "strict",
"proseWrap": "never",
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
"private": true,
"name": "gibsonipsum",
"description": "A cyberpunk placeholder text generator.",
"author": "Jeff <[email protected]>",
"version": "1.2.0",
"scripts": {
"build": "nuxt build",
"deploy": "np --no-release-draft && release",
"dev": "nuxt",
"generate": "nuxt generate",
"lint": "prettier-eslint '**/*.{js,vue}' --list-different --ignore '{dist,.nuxt}/**'",
"lint:styles": "stylelint '**/*.{css,vue}' --ip '{.nuxt,dist}/**'",
"now-build": "npm run generate",
"start": "nuxt start"
},
"dependencies": {
"@nuxtjs/google-analytics": "2.2.x",
"@nuxtjs/markdownit": "1.2.x",
"@nuxtjs/pwa": "2.6.x",
"chroma-js": "2.0.x",
"nuxt": "2.8.x"
},
"devDependencies": {
"@zazen/eslint-config": "1.0.x",
"@zazen/stylelint-config": "1.0.x",
"eslint": "5.16.x",
"eslint-plugin-vue": "5.2.x",
"husky": "2.4.x",
"lint-staged": "8.2.x",
"postcss-advanced-variables": "3.0.x",
"stylelint": "10.1.x"
},
"engines": {
"node": ">8.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"prettier-eslint --write",
"git add"
],
"*.{css,vue}": [
"stylelint --fix",
"git add"
]
},
"prettier": {
"arrowParens": "always",
"htmlWhitespaceSensitivity": "strict",
"proseWrap": "never",
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
}
}

1 comment on commit d3d8b76

@vercel
Copy link

@vercel vercel bot commented on d3d8b76 Jun 16, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.