Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions beachball.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ module.exports = {
renderEntry: entry => {
if (entry.author === 'beachball') {
return `- ${entry.comment}`;
}
// Imitate GitHub's commit format https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#commit-shas
return `- ${entry.comment} ([ni/nimble@${entry.commit.substring(0,7)}](https://github.com/ni/nimble/commit/${entry.commit}))`;
}
// Imitate GitHub's commit format https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#commit-shas
return `- ${entry.comment} ([ni/nimble@${entry.commit.substring(0, 7)}](https://github.com/ni/nimble/commit/${entry.commit}))`;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/jasmine-parameterized",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/nimble-angular",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/nimble-components",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/nimble-react",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/nimble-tokens",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/ok-angular",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/ok-components",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
7 changes: 7 additions & 0 deletions change/@ni-ok-react-7a9c8a7b-7a2e-407f-ac4e-d1ef241f23fa.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/ok-react",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/spright-angular",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/spright-components",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/spright-react",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Upgrade to ESLint v9 and update the configuration to use the flat configuration format",
"packageName": "@ni/xliff-to-json-converter",
"email": "131153319+gokulprasanth-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
11 changes: 11 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { defineConfig, globalIgnores } from 'eslint/config';
import { lintNimbleConfig, javascriptNimbleConfig } from '@ni-private/eslint-config-nimble';

export default defineConfig([
globalIgnores(['**/packages/']),
lintNimbleConfig,
{
files: ['**/*.js'],
extends: javascriptNimbleConfig
}
]);
Loading
Loading