-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prettier #16
Milestone
Comments
arcticicestudio
added a commit
that referenced
this issue
Nov 17, 2018
Installed the main "prettier" (1) package and "eslint-plugin-prettier" (2) for ESLint compatibility. References: (1) https://www.npmjs.com/package/prettier (2) https://www.npmjs.com/package/eslint-plugin-prettier GH-16
arcticicestudio
added a commit
that referenced
this issue
Nov 17, 2018
This is one of the main features of Prettier: It already provides the best and recommended style configurations of-out-the-box. The only option that has been changed is the print width (1). It is set to 80 by default which not up-to-date for modern screens (might only be relevant when working in terminals only like e.g. with Vim). It is now set to 120 used by all of Arctic Ice Studio's style guides. The `prettier.config.js` configuration file is placed in the project root as well as the `.prettierignore` file that defines ignore pattern. References: (1) https://prettier.io/docs/en/options.html#print-width GH-16
arcticicestudio
added a commit
that referenced
this issue
Nov 17, 2018
To be fully compatible with ESLint (implemented in GH-15), eslint-plugin-prettier (1) has been added to the plugins array of the ESLint configuration. To enable full compatibility the `prettier/prettier` rule has been added with the `error` level. References: (1) https://www.npmjs.com/package/eslint-plugin-prettier GH-16
arcticicestudio
added a commit
that referenced
this issue
Nov 17, 2018
To allow to format all sources the `format:pretty` NPM script/task has been added to be included in the main format script flow later on. GH-16
arcticicestudio
added a commit
that referenced
this issue
Nov 17, 2018
Run Prettier on the current code base for the first time to format according to the configuration. GH-16
Merged
arcticicestudio
added a commit
that referenced
this issue
Nov 17, 2018
Merge pull request #21 from arcticicestudio/feature/gh-16-prettier Integrated Prettier (1), the opinionated code formatter with support for many languages and integrations with most editors. It ensures that all outputted code conforms to a consistent style. >> Configuration This is one of the main features of Prettier: It already provides the best and recommended style configurations of-out-the-box. The only option we will change is the print width (2). It is set to 80 by default which not up-to-date for modern screens (might only be relevant when working in terminals only like e.g. with Vim). It is now set to changed to 120 used by all of Arctic Ice Studio's style guides. The `prettier.config.js` configuration file is placed in the project root as well as the `.prettierignore` file to also define ignore pattern. >> ESLint Compatibility To be fully compatible with ESLint (implemented in #15), eslint-plugin-prettier (3) has been included and added to the `plugins` array of the ESLint configuration (4). To enable full compatibility the `prettier/prettier` rule must be added with the `error` level. >> NPM script/task To allow to format all sources a `format:pretty` npm script/task has been added to be included in the main `format` script flow later on. >> Initial Formatting Afterwards Prettier has been run on the current code base Format and fixed found style guide violations using the configured linters. References: (1) https://prettier.io (2) https://prettier.io/docs/en/options.html#print-width (3) https://github.com/prettier/eslint-plugin-prettier (4) https://eslint.org/docs/user-guide/configuring#configuring-plugins
arcticicestudio
added a commit
that referenced
this issue
Nov 17, 2018
The configuration file `lint-staged.config.js` (1) has been placed in the project root and includes the commands that should be run for matching file extensions (globs). It includes at least the three following entries with the same order as listed here: 1. `prettier --list-different` - Run Prettier (#16) against `*.{js,json,jsx,mdx,yml}` to ensure all files are formatted correctly. The `--list-different` flag prints the found files that are not conform to the Prettier configuration. 2. `eslint` - Run ESLint (#15) against `*.{js,jsx}` to ensure all JavaScript files are compliant to the style guide after being formatted with Prettier. 3. `remark --no-stdout` - Run remark-lint (#14) against `*.md` to ensure all Markdown files are compliant to the style guide. The `--no-stdout` flag suppresses the output of the parsed file content. References: (1) https://github.com/okonet/lint-staged GH-17
arcticicestudio
added a commit
that referenced
this issue
Nov 17, 2018
Merge pull request #22 from arcticicestudio/task/gh-17-lint-staged Integrated lint-staged (1) to run linters against staged Git files to prevent to add code that violates any style guide into the code base. >> Configuration The configuration file `lint-staged.config.js` (1) has been placed in the project root and includes the commands that should be run for matching file extensions (globs). It includes at least the three following entries with the same order as listed here: 1. `prettier --list-different` - Run Prettier (#16) against `*.{js,json,jsx,mdx,yml}` to ensure all files are formatted correctly. The `--list-different` flag prints the found files that are not conform to the Prettier configuration. 2. `eslint` - Run ESLint (#15) against `*.{js,jsx}` to ensure all JavaScript files are compliant to the style guide after being formatted with Prettier. 3. `remark --no-stdout` - Run remark-lint (#14) against `*.md` to ensure all Markdown files are compliant to the style guide. The `--no-stdout` flag suppresses the output of the parsed file content. References: (1) https://github.com/okonet/lint-staged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Integrate Prettier, the opinionated code formatter with support for many languages and integrations with most editors. It ensures that all outputted code conforms to a consistent style.
Configuration
This is one of the main features of Prettier: It already provides the best and recommended style configurations of-out-the-box™.
The only option we will change is the print width. It is set to 80 by default which not up-to-date for modern screens (might only be relevant when working in terminals only like e.g. with Vim). It'll be changed to 120 used by all of Arctic Ice Studio's style guides.
The
prettier.config.js
configuration file will be placed in the project root as well as the.prettierignore
file to also define ignore pattern.ESLint Compatibility
To be fully compatible with ESLint (implemented in #15), eslint-plugin-prettier will be included and added to the
plugins
array of the ESLint configuration. To enable full compatibility theprettier/prettier
rule must be added with theerror
level.NPM script/task
To allow to format all sources a
format:pretty
npm script/task will be added to be included in the mainformat
script flow.Tasks
prettier.config.js
configuration file..prettierignore
ignore pattern file.prettier/prettier
rule with theerror
level.format:pretty
script/task.The text was updated successfully, but these errors were encountered: