Skip to content

Commit 2ba9e26

Browse files
committed
Meta tweaks
1 parent a8f45f6 commit 2ba9e26

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
3+
Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
"description": "Validate files with ESLint",
55
"license": "MIT",
66
"repository": "sindresorhus/grunt-eslint",
7+
"funding": "https://github.com/sponsors/sindresorhus",
78
"author": {
89
"name": "Sindre Sorhus",
910
"email": "[email protected]",
10-
"url": "sindresorhus.com"
11+
"url": "https://sindresorhus.com"
1112
},
1213
"engines": {
1314
"node": ">=10"

readme.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
# grunt-eslint [![Build Status](https://travis-ci.org/sindresorhus/grunt-eslint.svg?branch=master)](https://travis-ci.org/sindresorhus/grunt-eslint)
1+
# grunt-eslint [![Build Status](https://travis-ci.com/sindresorhus/grunt-eslint.svg?branch=master)](https://travis-ci.com/github/sindresorhus/grunt-eslint)
22

33
> Validate files with [ESLint](https://eslint.org)
44
55
![](screenshot.png)
66

7-
87
## Install
98

109
```
1110
$ npm install --save-dev grunt-eslint
1211
```
1312

14-
1513
## Usage
1614

1715
```js
@@ -26,7 +24,6 @@ grunt.initConfig({
2624
grunt.registerTask('default', ['eslint']);
2725
```
2826

29-
3027
## Examples
3128

3229
### Custom config and rules
@@ -56,7 +53,6 @@ grunt.initConfig({
5653
});
5754
```
5855

59-
6056
## Options
6157

6258
See the [ESLint options](https://eslint.org/docs/developer-guide/nodejs-api#cliengine).
@@ -65,7 +61,7 @@ In addition the following options are supported:
6561

6662
### format
6763

68-
Type: `string`<br>
64+
Type: `string`\
6965
Default: `'stylish'`
7066

7167
Name of a [built-in formatter](https://github.com/eslint/eslint/tree/master/lib/cli-engine/formatters) or path to a custom one.
@@ -74,28 +70,28 @@ Some formatters you might find useful: [eslint-json](https://github.com/sindreso
7470

7571
### outputFile
7672

77-
Type: `string`<br>
73+
Type: `string`\
7874
Default: `''`
7975

8076
Output the report to a file.
8177

8278
### quiet
8379

84-
Type: `boolean`<br>
80+
Type: `boolean`\
8581
Default: `false`
8682

8783
Report errors only.
8884

8985
### maxWarnings
9086

91-
Type: `number`<br>
87+
Type: `number`\
9288
Default: `-1` *(Means no limit)*
9389

9490
Number of warnings to trigger non-zero exit code.
9591

9692
### failOnError
9793

98-
Type: `boolean`<br>
94+
Type: `boolean`\
9995
Default: `true`
10096

10197
Fail the build if ESLint found any errors.

0 commit comments

Comments
 (0)