1.1.0 • Published 4 years ago

@open-wc/prettier-config v1.1.0

Weekly downloads
1,817
License
MIT
Repository
github
Last release
4 years ago

Linting Prettier

Use Prettier to format your JS, CSS and HTML code.

:Warning: this package is deprecated. We recommend using prettier v2 with the recommend config instead.

Setup

npm init @open-wc
# Upgrade > Linting

Manual

  • Install @open-wc/prettier-config
    npm add --save-dev @open-wc/prettier-config
  • Adjust your package.json with the following
    "scripts": {
      "lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
      "format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore"
    },
    "devDependencies": {
      "@open-wc/prettier-config": "^0.1.10"
    },
    "eslintConfig": {
      "extends": [
        "eslint-config-prettier"
      ]
    },
    "prettier": "@open-wc/prettier-config"

What you get

  • Apply formatting to JS files
  • Apply formatting to HTML inside of html tagged template literals used by lit-html
  • Apply formatting to CSS inside of css tagged template literals used by lit-element
  • Integration with ESLint to prevent potentially conflicting rules

Usage

Run:

  • npm run lint:prettier to check if your files are correctly formatted
  • npm run format:prettier to auto format your files

Linting Error Examples

$ npm run lint:prettier

test/set-card.test.js
test/set-game.test.js
↑↑ these files are not prettier formatted ↑↑

Simply run npm run format:prettier to format your files automatically.

1.1.0

4 years ago

1.0.0

4 years ago

0.1.14

4 years ago

0.1.13

4 years ago

0.1.12

4 years ago

0.1.11

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago