mirror of
https://github.com/nordtheme/vim.git
synced 2026-09-10 07:36:23 -04:00
To align with the latest Nord project standards more changes have been made for as part of the `nordtheme` organization migration. GH-335
25 lines
619 B
JavaScript
25 lines
619 B
JavaScript
/*
|
|
* Copyright (c) 2016-present Sven Greb <development@svengreb.de>
|
|
* This source code is licensed under the MIT license found in the license file.
|
|
*/
|
|
|
|
/**
|
|
* Configurations for Prettier.
|
|
* @see https://prettier.io/docs/en/configuration.html
|
|
* @see https://prettier.io/docs/en/options.html
|
|
* @see https://prettier.io/docs/en/options.html#parser
|
|
* @see https://prettier.io/docs/en/plugins.html
|
|
* @see https://github.com/un-ts/prettier/tree/master/packages/sh
|
|
*/
|
|
module.exports = {
|
|
printWidth: 160,
|
|
overrides: [
|
|
{
|
|
files: [".husky/*"],
|
|
options: {
|
|
parser: "sh",
|
|
},
|
|
},
|
|
],
|
|
};
|