Skip to content

Commit

Permalink
Merge pull request #13 from productboard/remove-case-sensitivity
Browse files Browse the repository at this point in the history
Remove case sensitivity for collocate fragment spreads
  • Loading branch information
MartinNuc authored Aug 30, 2024
2 parents b573618 + 99811cf commit 9a86240
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
10 changes: 1 addition & 9 deletions src/rule-must-colocate-fragment-spreads.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,6 @@ function getGraphQLFragmentSpreads(graphQLAst) {
return fragmentSpreads;
}

function isFirstLetterUppercase(word) {
return /^\p{Lu}/u.test(word);
}

function getGraphQLFragmentDefinitionName(graphQLAst) {
let name = null;
visit(graphQLAst, {
Expand Down Expand Up @@ -171,11 +167,7 @@ function checkColocation(context) {
ImportDeclaration(node) {
if (node.importKind === 'value') {
node.specifiers.forEach(specifier => {
if (
allowNamedImports &&
specifier.imported &&
isFirstLetterUppercase(specifier.imported.name)
) {
if (allowNamedImports && specifier.imported) {
foundImportedModules.push({
type: 'namedImport',
value: specifier.imported.name
Expand Down
10 changes: 10 additions & 0 deletions test/must-colocate-fragment-spreads.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ ruleTester.run(
`,
options: [{allowNamedImports: true}]
},
{
code: `
import { useHook } from '@some/module';
graphql\`fragment foo on Page {
...useHook
}\`;
`,
options: [{allowNamedImports: true}]
},
`
const Component = require('../shared/component.js');
graphql\`fragment foo on Page {
Expand Down

0 comments on commit 9a86240

Please sign in to comment.