mirror of
https://github.com/github/codeql-action.git
synced 2026-04-25 08:18:48 +00:00
b29bf7b05a
This version changes how it counts python heredoc. All heredoc is counted as code.
16 lines
238 B
JavaScript
16 lines
238 B
JavaScript
module.exports = {
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
printWidth: 100,
|
|
proseWrap: 'never',
|
|
endOfLine: 'lf',
|
|
overrides: [
|
|
{
|
|
files: '.prettierrc',
|
|
options: {
|
|
parser: 'json',
|
|
},
|
|
},
|
|
],
|
|
};
|